home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 May / PCPlus May 1998=disk A.iso / full / CBUILDER / SAMS / SAMPLES / CHAP05 / PMETEST.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-12  |  570 b   |  16 lines

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. //---------------------------------------------------------------------------
  5. USEFORM("PMEmain.cpp", PMEForm);
  6. //---------------------------------------------------------------------
  7. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  8. {
  9.     Application->Initialize();
  10.     Application->CreateForm(__classid(TPMEForm), &PMEForm);
  11.     Application->Run();
  12.  
  13.     return 0;
  14. }
  15. //---------------------------------------------------------------------------
  16.